home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_11.lha / 5_11 / 5_11C.h < prev    next >
C/C++ Source or Header  |  1993-08-08  |  228b  |  14 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. truct token
  6.  
  7.    exprtype type;
  8.    union
  9.    {
  10.        int value;
  11. char *cvalue;
  12.    };
  13. ;
  14.